html {
  scroll-behavior: smooth;
}
.notif {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 50%;
  height: 100vh;
  transform: translateX(-50%);
  z-index: 100;
  width: 80%;
}
.notif div {
  height: 50%;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 5px 25px #000;
  padding: 0 40px;
}
.notif div i {
  font-size: 3rem;
  position: relative;
  bottom: 20px;
}
.notif div > * {
  color: #000;
  text-align: center;
  margin: 5px 0;
}
.notif div a {
  background: unset;
  color: #000;
  border: unset;
  transition: 0.3s ease all;
}
.notif div a:hover {
  color: #064481;
  letter-spacing: 1px;
}
.notif div span {
  font-size: 0.8rem;
  animation: wave 1s infinite;
}
.notif .refusal {
  font-size: 0.8rem;
  color: gray;
  cursor: pointer;
}
.container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  transition: 0.5s;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.container.active {
  right: 300px;
}
section {
  z-index: 1;
  padding: 15px;
  color: #555f61;
  color: #fff;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  scroll-snap-align: center;
}
section .icon {
  position: absolute;
  bottom: 30px;
  animation: moveicon 1s ease-in-out infinite;
}
section .icon a {
  all: unset;
}
section .icon a i {
  transform: scale(1.5);
}
section#description {
  background: url("../img/backgroundPhyCh.jpg") no-repeat center
    center/cover;
  position: relative;
  background-attachment: fixed;
}
section#description h3 {
  font-size: 32px;
  margin: 40px 0;
}
section#description .description {
  display: flex;
  justify-content: space-evenly;
}
section#description .description p.paragraph {
  max-width: 70%;
  padding: 5px;
}
section#mission {
  background: url("../img/backgroundPhyCh.jpg") no-repeat center
    center/cover;
  position: relative;
  background-attachment: fixed;
}
section#mission h3 {
  margin-bottom: 30px;
}
section#mission div {
  padding: 10px;
  display: flex;
  align-items: center;
}
section#mission div img {
  margin-right: 15px;
}
section#mission #mission-cards {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
section#mission #mission-cards .card {
  color: #fff;
  background: #064481;
  padding: 0 20px;
  min-height: 150px;
  margin: 0px 20px;
  min-width: 150px;
  max-width: 270px;
  border-radius: 3px;
  transform: translate3d(0, 0, 10px);
  box-shadow: 5px 5px 15px 10px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease-in-out;
}
section#mission #mission-cards .card:hover {
  transform: perspective(700px) translate3d(0, 0, 20px);
}
section#meetings {
  background: url("../img/backgroundPhyCh.jpg") no-repeat center
    center/cover;
  position: relative;
  background-attachment: fixed;
}
section#meetings div {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 20px;
}
section#meetings div .paragraph1 {
  display: flex;
  align-items: center;
}
section#meetings div h3 {
  margin-bottom: 30px;
}
section#meetings div p {
  max-width: 70%;
  padding: 15px;
}
section#meetings div p:nth-child(0) {
  margin-left: 5px;
}
section#meetings div p:nth-child(1) {
  margin-right: 5px;
}
@keyframes moveicon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  90% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wave {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0);
  }
}
@media only screen and (max-width: 1200px) {
  body {
    overflow: visible;
  }
  .notif {
    width: 100%;
  }
  .notif a {
    border: none;
    padding: 2px 5px;
  }
  .container {
    overflow-y: unset;
    scroll-snap-type: unset;
  }
  section .icon {
    opacity: 0;
  }
  section #description {
    background: unset;
  }
  section #mission {
    background: unset;
  }
  section #meetings {
    background: unset;
  }
}
@media only screen and (max-width: 768px) {
  #mission-cards {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
}
